home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / access.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  123 b   |  10 lines

  1. #include "lib.h"
  2.  
  3. PUBLIC int access(name, mode)
  4. _CONST char *name;
  5. int mode;
  6. {
  7.   return callm3(FS, ACCESS, mode, name);
  8.  
  9. }
  10.